home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / gawk-3.000 / gawk-3 / gawk-3.0.0 / test / splitargv.awk < prev    next >
Encoding:
AWK Script  |  1993-10-20  |  144 b   |  8 lines

  1. BEGIN   {
  2.           for (idx = 1; idx < ARGC; idx++)
  3.             split(ARGV[idx], temp, ".");
  4.         }
  5.         {
  6.           print $0;
  7.         }
  8.